home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 054a / execwn.zip / EWTEST.PAS next >
Pascal/Delphi Source File  |  1993-02-11  |  183b  |  11 lines

  1. {$M 4096,0,655360}
  2. program ExecWinTest;
  3. uses
  4.   ExecWin;
  5. var
  6.   Status : Integer;
  7. begin
  8.   Status := ExecWindow('DIR *.*', True, 20, 10, 70, 20, $1E);
  9.   writeln(Status);
  10. end.
  11.